home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / c / amivogl-1.03.lzh / vogl / src / sunfort / fgetgp.c.Z / fgetgp.c
Encoding:
C/C++ Source or Header  |  1991-06-03  |  304 b   |  32 lines

  1. #include "vogl.h"
  2.  
  3. /*
  4.  * getgp_
  5.  */
  6. void
  7. getgp_(x, y, z)
  8.     float    *x, *y, *z;
  9. {
  10.     getgp(x, y, z);
  11. }
  12.  
  13. /*
  14.  * getgpos_
  15.  */
  16. void
  17. getgpos_(x, y, z, w)
  18.     float    *x, *y, *z, *w;
  19. {
  20.     getgpos(x, y, z, w);
  21. }
  22.  
  23. /*
  24.  * getgpo_    (same as getgpos_)
  25.  */
  26. void
  27. getgpo_(x, y, z, w)
  28.     float    *x, *y, *z, *w;
  29. {
  30.     getgpos(x, y, z, w);
  31. }
  32.